home *** CD-ROM | disk | FTP | other *** search
/ Visual Intercept / Visual Intercept.iso / sheriff.z / issherff.bas < prev    next >
BASIC Source File  |  1996-08-26  |  2KB  |  50 lines

  1. Attribute VB_Name = "IISheriff"
  2. '----------------------------------------------------------------------------
  3. '   issherff.bas is a member of the Visual Intercept Visual Basic API.
  4. '   Copyright (c) 1996 Elsinore Technologies, Inc. All rights reserved.
  5. '
  6. '   This software is protected by copyright law. Unauthorized reproduction
  7. '   or distribution of this program, or any portion of it, may result in
  8. '   severe civil or criminal penalties. If you have any questions about
  9. '   your redistribution rights, please contact Elsinore Technologies, Inc.
  10. '
  11. '   Creator: Albert J. Lin (AJL)
  12. '   History: Created 09/17/95
  13. '----------------------------------------------------------------------------
  14.  
  15.  
  16. Public Const cursorWait = 11   ' hour glass cursor
  17. Public Const cursorNormal = 0  ' normal object cursor
  18. Public Const MAX_PROJECTS = 1536
  19.  
  20. Public Type ISProjectRecord
  21.     name                  As String ' Name of project
  22.     version               As String ' Version of project
  23.     leadID                As String ' UserID of project lead
  24. End Type
  25.  
  26. Public Type ISSheriffRecord
  27.     recordID                As Long
  28.     formTitle               As String   ' Client side Form title
  29.     nProjects               As Long     ' Number of projects available
  30.     projects(MAX_PROJECTS)  As ISProjectRecord  ' Available project definitions
  31.  
  32.     'Logon parameters
  33.     server                  As String   ' Data source name these projects are from
  34.     userID                  As String   ' Intercept userID used to log into the data source
  35.     password                As String   ' Intercept password used to log into the data source
  36.     systemUserID            As String   ' Data source userID used to log into the data source (optional)
  37.     systemPassword          As String   ' Data source password used to log into the data source (optional)
  38.     options                 As Long     ' Intercept logon options
  39.     
  40.     'Default values for Incident
  41.     requesterID             As String   ' Intercept incident default requestID
  42.     assignedID              As String   ' Intercept incident default assignID
  43.     category                As String   ' Intercept incident default category
  44.     status                  As String   ' Intercept incident default status
  45.     priority                As String   ' Intercept incident default priority
  46.     severity                As String   ' Intercept incident default severity
  47.     
  48. End Type
  49.  
  50.